home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
GAMETORS
/
NAVY.LZH
/
BEEP.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1984-10-19
|
174b
|
13 lines
PROCEDURE beep(n:integer);
{ emits n beep sounds }
var i : integer;
BEGIN
for i := 1 to n do
begin
sound(440);
delay(250);
nosound;
end;
END;